home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / complib / free_dvector.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-26  |  139 b   |  11 lines

  1. /*
  2. ### freem memory for 1-d double precision array ### 
  3. */
  4.  
  5. void free_dvector(v,nl,nh)
  6. double *v;
  7. int nl,nh;
  8. {
  9.     free((char *) (v + nl));
  10. }
  11.